home *** CD-ROM | disk | FTP | other *** search
- /*
- ** Displays SEE32.DLL Version (VERSION.C)
- */
-
- #include <windows.h>
- #include <stdio.h>
- #include "see.h"
-
- static Buffer[65];
-
- void main(void)
- {int Version;
- Version = seeStatistics(SEE_GET_VERSION);
- printf("SEE32 Version: %1d.%1d.%1d\n",0x0f&(Version>>8),0x0f&(Version>>4),0x0f&Version);
- seeDebug(SEE_GET_REGISTRATION,(LPSTR)Buffer,65);
- printf(" Registration: %s\n", Buffer);
- }
-
-
-